4 examples for git stash
# Save unfinished work onto a stack - you can get it back later
git stash
# List your stashes
git stash list
# Get back the most recent stash
git stash apply
# Get back an earlier stash (third from top in this case)
git stash apply stash@{3}